Don't document forward declarations and move them down a bit to make them
authorMartin Nordholts <martinn@src.gnome.org>
Wed, 14 Jan 2009 20:38:47 +0000 (20:38 +0000)
committerMartin Nordholts <martinn@src.gnome.org>
Wed, 14 Jan 2009 20:38:47 +0000 (20:38 +0000)
* babl/babl.h: Don't document forward declarations and move them
down a bit to make them less eminent.

svn path=/trunk/; revision=362

ChangeLog
babl/babl.h

index 83a7637ab24bc04aaf4cbce7c7c8f7243cefd0ce..9a63a0cc32332e7d089ef7ae0e7a61ab188c44d0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
 2009-01-14  Martin Nordholts  <martinn@svn.gnome.org>
 
-       * babl/babl.h:
+       * babl/babl.h: Don't document forward declarations and move them
+       down a bit to make them less eminent.
+
+2009-01-14  Martin Nordholts  <martinn@svn.gnome.org>
+
        * babl/babl-internal.h: Remove BABL_HARD_MAX_PATH_LENGTH from
        here, it's only for internal use.
 
index f55d4d16b39772c871d7b423d4403d972b1019f8..284e6f8726a0150a427e3aac69d158c0e93fdf85 100644 (file)
 #error babl.h included after babl-internal.h
 #endif
 
-typedef union _Babl Babl;
-/* Union used for quick convenient access to any field of any BablInstance */
-
-typedef struct _BablList BablList;
-
 /* magic number used at the start of all babl objects, used to do
  * differentiation in polymorphic functions. (as well as manual
  * type check assertions).
@@ -75,6 +70,10 @@ enum {
 };
 typedef unsigned int BablClassType;
 
+typedef union _Babl Babl;
+
+typedef struct _BablList BablList;
+
 /** Initialize the babl library */
 void   babl_init       (void);